home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / kcl / akcl / akcl1615.lha / mp / mp_dblremul3.c < prev    next >
C/C++ Source or Header  |  1991-05-16  |  216b  |  18 lines

  1. #include "config.h"
  2. #include "genpari.h"
  3. #include "arith.h"
  4.  
  5. unsigned long dblremul3(x,y,z)
  6.      int x,y,z;
  7. { unsigned long h;
  8.   unsigned long w = mulul(x,y,h);
  9.   divul(x,z,h);
  10.   return h;
  11. }
  12.   
  13.  
  14.     
  15.     
  16.     
  17.      
  18.